home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 26 / AACD 26.iso / AACD / Programming / ace_gpl_release / make / lmake < prev    next >
Encoding:
AmigaDOS Script File  |  1996-08-28  |  247 b   |  12 lines

  1. .key arg
  2.  
  3. IF <arg> EQ "all"
  4.   ; make the whole ace library.
  5.   ; from N object files
  6.   echo "Making db.lib..."
  7.   join ACE:src/lib/obj/#?.o as ACE:lib/db.lib
  8. ELSE
  9.   ; make an object file.
  10.   a68k ACE:src/lib/asm/<arg>.s ACE:src/lib/obj/<arg>.o
  11. ENDIF
  12.